home *** CD-ROM | disk | FTP | other *** search
/ NeXT Education Software Sampler 1992 Fall / NeXT Education Software Sampler 1992 Fall.iso / Programming / Source / Unknown / Unknown.h < prev    next >
Encoding:
Text File  |  1991-04-02  |  829 b   |  33 lines

  1. /* File: Unknown.h - The 'Unknown' Application
  2.  *
  3.  * By: Christopher Lane
  4.  * Symbolic Systems Resources Group
  5.  * Knowledge Systems Laboratory
  6.  * Stanford University
  7.  *    
  8.  * Contributor(s):
  9.  *    
  10.  *     Jiro Nakamura (jiro@heights.cit.cornell.edu)
  11.  *
  12.  * Date: 2 April 1991
  13.  *
  14.  * Copyright: 1989, 1990 & 1991 by The Leland Stanford Junior University.
  15.  * This program may be distributed without restriction for non-commercial use.
  16.  */
  17.  
  18. #import <appkit/Application.h>
  19.  
  20. @interface Unknown : Application { }
  21.  
  22. + new;
  23.  
  24. - (BOOL) appAcceptsAnotherFile:sender;
  25. - (int) appOpenFile:(const char *) filename type:(const char *) aType;
  26. - appDidInit:sender;
  27.  
  28. - loadSegment:(const char *) segment section:(const char *) section;
  29. - (int) ReOpenFile:(const char *) filename type:(const char *) aType;
  30. - (BOOL) unix_error:(const char *) string;
  31.  
  32. @end
  33.